home comics writing pictures archive about

CodeParser.h

Language: C++
Last Modified: 2022-10-12 12:58:58 AM UTC
File Size: 321 bytes
http://www.penguinstew.ca/example/CodeFormater/CodeParser.h
#pragma once
#include "TypeCache.h"
#include "Type.h"
#include "Line.h"
#include <vector>
class CodeParser
{
public:
CodeParser();
std::vector<Line> ParseLines(std::string filename, std::string typeExt, int startLine, int endLine);
private:
void PopTypeStates(std::vector<State>& currentStates);
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16